home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 242 / Issue 242 - April 2008 - DPCS0408DVD.ISO / Software Money Savers / VirtualDub / Source / VirtualDub-1.7.7-src.7z / src / Asuka / source / resbind.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-14  |  1.9 KB  |  56 lines

  1. //    Asuka - VirtualDub Build/Post-Mortem Utility
  2. //    Copyright (C) 2005 Avery Lee
  3. //
  4. //    This program is free software; you can redistribute it and/or modify
  5. //    it under the terms of the GNU General Public License as published by
  6. //    the Free Software Foundation; either version 2 of the License, or
  7. //    (at your option) any later version.
  8. //
  9. //    This program is distributed in the hope that it will be useful,
  10. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. //    GNU General Public License for more details.
  13. //
  14. //    You should have received a copy of the GNU General Public License
  15. //    along with this program; if not, write to the Free Software
  16. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. #include <vd2/system/error.h>
  19. #include <vd2/system/file.h>
  20. #include <vd2/system/vdstl.h>
  21. #include <vector>
  22. #include <windows.h>
  23.  
  24. void tool_resbind(const std::vector<const char *>& args, const std::vector<const char *>& switches, bool amd64) {
  25.     if (args.size() != 4) {
  26.         printf("usage: resbind <exe-name> <source file> <restype> <resname>\n");
  27.         exit(5);
  28.     }
  29.  
  30.     const char *exename = args[0];
  31.     const char *srcfile = args[1];
  32.     const char *restype = args[2];
  33.     const char *resname = args[3];
  34.  
  35.     VDFile file(srcfile);
  36.  
  37.     vdblock<char> buf((size_t)file.size());
  38.  
  39.     file.read(buf.data(), buf.size());
  40.     file.close();
  41.  
  42.     HANDLE hUpdate = BeginUpdateResource(exename, FALSE);
  43.     if (!hUpdate)
  44.         throw MyWin32Error("Cannot open \"%s\" for resource edit: %%s.", GetLastError(), exename);
  45.  
  46.     BOOL success = UpdateResource(hUpdate, restype, resname, 0x0409, buf.data(), buf.size());
  47.     DWORD err = GetLastError();
  48.  
  49.     EndUpdateResource(hUpdate, !success);
  50.  
  51.     if (!success)
  52.         throw MyWin32Error("Cannot update \"%s\": %%s.", err, exename);
  53.  
  54.     printf("Adding \"%s\" to \"%s\" as %s:%s.\n", srcfile, exename, restype, resname);
  55. }
  56.